home *** CD-ROM | disk | FTP | other *** search
/ CD ROM Paradise Collection 4 / CD ROM Paradise Collection 4 1995 Nov.iso / program / owldbf.zip / README < prev   
Text File  |  1992-11-24  |  1KB  |  33 lines

  1. This example project is a _minimal_ test program that demonstrates
  2. linking OWL and DBF successfully. It has been created by combining
  3. the existing OWL example, DIALTEST.PRJ, with the existing DBF example,
  4. CREATTBL.CPP. It is not intended to be a full or necessarily functional
  5. example, although it would be possible to easily add functionality to the 
  6. Dialog box, allowing users to view or manipulate the table ( this would
  7. entail changing the scope of the Engine classes to be within the scope 
  8. of the Dialog ).
  9.  
  10.  
  11. Steps necessary to link an OWL program with DBF.
  12.  
  13. go to PXENG30\C\SOURCE and enter
  14.    make -DWINDOWS -f makefile.bc
  15.    This will replace the DOS/current dbfeng.lib ( if it exists ) found in
  16.    PXENG30\C\LIB 
  17.    Saving the DOS/current version can be accomplished by renaming or 
  18.    moving the DOS/current library to another directory.
  19.    Load SHARE, have PXENGWIN.DLL on path
  20. //===================================================================
  21.  
  22. to link dynamically...
  23.    make -DWINDOWS -DDYNAMIC -f makefile.bc
  24.    This will replace the current dbfeng.lib ( if it exists ) found in
  25.    PXENG30\C\LIB 
  26.    Saving the current version can be accomplished by renaming or 
  27.    moving the current dbfeng.lib to another directory.
  28.    Load SHARE, have PXENGWIN.DLL on path
  29.  
  30.    In the IDE...
  31.    change OPTIONS | LINKER | LIBRARIES to "Dynamic"
  32.    define _CLASSDLL in OPTIONS | COMPILER | CODE GENERATION | Defines
  33.